home *** CD-ROM | disk | FTP | other *** search
/ Programming with VisualAge for Java / IBMVJAVA.ISO / scrapbook / ch02 / page 1 next >
Encoding:
Text File  |  1997-07-23  |  66 b   |  3 lines

  1. for( int i = 3;i > 0; i--){
  2.     System.out.println("Loop: " + i);
  3. }